home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / toolpa.zip / TUTOR.MAK < prev    next >
Text File  |  1992-04-22  |  253b  |  18 lines

  1. #
  2. # Tutor - Make File
  3. #
  4. INCLUDE=\tpw\owl
  5. CC=tpcw /m /V
  6.  
  7. PGM=Tutor
  8. OBJS =     $(PGM).pas \
  9.     Jtools.pas \
  10.  
  11. $(PGM).exe: $(OBJS) $(PGM).res
  12.     $(CC) $(PGM)
  13.   rc -K $(PGM).res $(PGM).exe
  14.  
  15. $(PGM).res: $(PGM).rc 
  16.      rc -r -I$(INCLUDE) $(PGM).rc
  17.  
  18.